home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 23 / Amiga Format AFCD23 (Feb 1998, Issue 107).iso / -in_the_mag- / emulation / consoles / vision-8 / sources / makefile < prev    next >
Makefile  |  1997-12-12  |  533b  |  25 lines

  1. default:
  2.     @echo "To compile Vision-8, use one of the following:"
  3.     @echo " make x     - Make the Unix/X version"
  4.     @echo " make msdos - Make the MS-DOS version"
  5.     @echo " make msx   - Make the MSX version"
  6.     @echo " make adam  - Make the Coleco ADAM version"
  7.     @echo ""
  8.     @echo "The MS-DOS makefile is configured for Borland C++"
  9.     @echo "The MSX and Coleco ADAM versions are configured for Hi-Tech C 3.09"
  10.  
  11. x:
  12.     make -f Makefile.X
  13.  
  14. msdos:
  15.     make -f Makefile.DOS
  16.  
  17. msx:
  18.     make -f Makefile.MSX
  19.  
  20. adam:
  21.     make -f Makefile.ADM
  22.  
  23. clean:
  24.     rm -f *.o *~
  25.